.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff8f0;
  border: 2px solid #FFA500; /* Orange travaux */
  border-radius: 8px;
}

.contact-form h2 {
  margin-bottom: 0.5rem;
  color: #FF8C00; /* Orange foncé pour le titre */
}

.contact-form p {
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  background: #FF8C00;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #e67600;
}
